SQL Table Value Constructor – SELECT Statement (Create a Table With Value Generated By My Self)


/** Create a Table With Value Generated By My Self **/
SELECT * FROM 
(VALUES 
    /** First Value, Second Value In A Row**/
    ('David', 25),
    ('Brown', 26),
    ('Alex', 22)

) /** First Column Name, Second Column Name**/
as E(FirstName, Age);
#SQL #Table Value Constructor #SELECT Statement






你可能感興趣的文章

TEMPLE OF DOOM: 1 Walkthrough

TEMPLE OF DOOM: 1 Walkthrough

[ Nuxt.js 2.x 系列文章 ] Nuxt.js 專案架設

[ Nuxt.js 2.x 系列文章 ] Nuxt.js 專案架設

超好用的 Web API - Intersection Observer

超好用的 Web API - Intersection Observer






留言討論